Update the engine immobilizer state of a vehicle. This requires an engine immobilizer to be installed on the vehicle gateway.
Rate limit: 100 requests/min (learn more about rate limits here).
To use this endpoint, select Write Vehicle Immobilization under the Vehicles category when creating or editing an API token. Learn More.
Submit Feedback: Likes, dislikes, and API feature requests should be filed as feedback in our API feedback form. If you encountered an issue or noticed inaccuracies in the API documentation, please submit a case to our support team.
curl --request PATCH \
--url https://api.samsara.com/beta/fleet/vehicles/{id}/immobilizer \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"relayStates": [
{
"id": "relay1",
"isOpen": false
}
]
}
'This response has no body data.Documentation Index
Fetch the complete documentation index at: https://samsara-showcase.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Vehicle ID
A request body to update the engine immobilizer state.
A list of relay states. If a relay is omitted, its state won't be updated. If the list is empty, a 400 bad request status code will be returned. If there are multiple states for the same relay, a 400 bad request status code will be returned.
Show child attributes
curl --request PATCH \
--url https://api.samsara.com/beta/fleet/vehicles/{id}/immobilizer \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"relayStates": [
{
"id": "relay1",
"isOpen": false
}
]
}
'This response has no body data.